@charset "utf-8";

/* CSS Document */

html, body {
  width: 100%;
  height: 100%;
  background-color: #0e0e0e;
  font-family: 'Noto Sans', sans-serif;
  color: #aaaaaa;
  margin: 0;
  padding: 0;
  /*font-size: 100%;*/
}


/******************* header section ***********************/

header {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

#logo_container {
  background-color: #202020;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#logo_name {
  opacity: 0;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 6vw;
  font-weight: 600;
}

#logo_tagline {
  opacity: 0;
  font-size: 3vw;
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: #e7d13f;
}

#logo_desc {
  font-size: 4vw;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: bold;
  color: #e7d13f;
}


/*****************  Horizontal Nav Bar  ***************************************/

nav {
  display: none;
  padding-top: 8px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: left;
  margin: 10px 0px;
}

li a {
  padding: 8px 35px;
  margin: 0px 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  color: #505050;
  background-color: #202020;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

@media only screen and (max-width: 900px) {
  /*smartphone screen or small tablet*/
  li {
    float: none;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  li a {
    padding: 8px 0;
    display: block;
    margin: auto;
    width: 100%;
  }
}

li a:hover:not(.active) {
  background-color: #e7d13f;
}

li a.active {
  color: #e7d13f;
}


/*************** Article Section *****************************/

section {
  position: absolute;
  top: 150px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow-y: auto;
  margin: 10px 25px;
  display: none;
}

figure {
  text-align: center;
}

figure img {
  max-width: 100%;
  height: auto;
}

section h1 {
  margin: 0;
  font-size: 2vw;
  font-weight: bold;
  text-align: center;
  color: #e7d13f;
}

section h2 {
  margin: 0;
  font-size: 1.5vw;
  font-weight: bold;
  text-align: center;
  color: #e7d13f;
}

/* tableau is used to show a picture with text to the right on a gray background block */
.tableau {
  max-width: 100%;
  height: auto;
  margin: 20px 20px;
  padding: 20px;
  background-color: #202020;
  overflow: auto;
}

.tableau figure {
  float: left;
}

.tableau p {
  margin: 20px;
  font-size: 1.25vw;
  font-weight: bold;
}

.tableauCenter {
  max-width: 100%;
  height: auto;
  margin: 20px 20px;
  padding: 20px;
  background-color: #202020;
  overflow: auto;
}

.tableauCenter p {
  margin: 20px;
  font-size: 1.25vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.tableauCenter figure {
  float: center;
}

.tableauCenter .gold {
  color:#e7d13f;
}


@media only screen and (max-width: 900px) {
  /*smartphone screen or small tablet*/
  section {
    top: 330px;
  }
  section h1 {
    font-size: 3vw;
  }
  p {
    font-size: 2vw;
  }
  th, td {
    font-size: 2vw;
  }
}


/*************** Galleries Page **********************/

#pageGallery {
  /*margin: 20px 30px;*/
  float: left;
}

.gallery_selector {
  margin: 20px;
  height: 300px;
  width: auto;
  float: left;
  text-align: center;
  min-width: 300px;
  opacity: 0.3;
  -webkit-transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
}

.gallery_selector:hover {
  opacity: 1.0;
  color: #e7d13f;
}

.gallery_name {
  font-size: 1.2em;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 225px;
  word-wrap: normal;
}

.gallery_img {
  height: 270px;
}


/*************** Gallery Section *****************************/

.gallery {
  margin: 20px 30px;
  float: left;
}

div.art_img {
  margin: 20px;
  height: 230px;
  width: auto;
  float: left;
  text-align: center;
  min-width: 150px;
}

div.art_img img {
  height: 180;
}

div.desc {
  font-size: .8em;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  width: 225px;
  word-wrap: normal;
}
